Question 1 With Markdown write a sentence that has one word in bold.

This is BOLD

Question 2 With Markdown write a sentence that has one word in italic.

This is ITALIC

Question 3 With Markdown write a sentence that has one word in italic bold.

This is ITALIC BOLD

Question 4 With Markdown write an unordered list with three items.

Question 5 With Markdown write an ordered list with three items.

  1. PUBLIC FINANCE

  2. MACHINE LEARNING

  3. GENDER IN ECONOMICS

Question 6 With Markdown give a link to your favorite webpage.

Check My Favorite Webpage!

Question 7 With Markdown add a cat picture.

Dinosaur Cat

Question 8 With Rmarkdown insert a code chunk and give an example of a simple mathematical calculation in it.

3 * 4
## [1] 12

Question 9 With \(LaTeX\) write your favorite equation in block form.

This is my favorite equation in block form: \[ M′_z(t)=M_z \]

And this: \[ \sum_{i=1}^{10} t_i \]

Question 10 In a code chunk calculate 3 + 4.

3 + 4
## [1] 7